home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextLibrary / Documentation / NextDev / Examples / MiG / Client / Makefile < prev   
Encoding:
Makefile  |  1995-01-27  |  204 b   |  11 lines

  1. CFLAGS=-g
  2. LIBRARY=../Library
  3. CLIENTOBJS=add.o ${LIBRARY}/addUser.o ${LIBRARY}/add_lookup.o
  4.  
  5. ../addclient:    ${CLIENTOBJS}
  6.     cc ${CFLAGS} -o ../addclient ${CLIENTOBJS}
  7.     
  8. clean:
  9.     rm -f *.o
  10.     rm -f ../addclient
  11.